d468cc49dcd6835ac4c2b8fc123370c941e77e50,sfc-classifiers/sfc-scf-openflow/src/main/java/org/opendaylight/sfc/scfofrenderer/utils/SfcScfOfUtils.java,SfcScfOfUtils,initClassifierDpdkInputFlow,#String#number#,98

Before Change


        InstructionsBuilder isb = SfcOpenflowUtils.wrapActionsIntoApplyActionsInstruction(actionList);

        // Create and configure the FlowBuilder
        FlowBuilder classifierDpdkInputFlow =
                SfcOpenflowUtils.createFlowBuilder(
                        TABLE_INDEX_CLASSIFIER,
                        FLOW_PRIORITY_CLASSIFIER,
                        "classifier_dpdk_input",
                        match, isb);

        return classifierDpdkInputFlow;
    }

   /**

After Change


        InstructionsBuilder isb = SfcOpenflowUtils.wrapActionsIntoApplyActionsInstruction(actionList);

        // Create and configure the FlowBuilder
        return SfcOpenflowUtils.createFlowBuilder(
                TABLE_INDEX_CLASSIFIER,
                FLOW_PRIORITY_CLASSIFIER,
                "classifier_dpdk_input",
                match,
                isb);
    }

   /**